home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 1 / LSD Compendium Deluxe 1.iso / a / programming / assemblers / cas.lha / data / dmakefile < prev    next >
Encoding:
Makefile  |  1993-07-15  |  322 b   |  17 lines

  1. all: data.hex
  2.  
  3. data.hex:    data.o kernel.o math.o stdio.o
  4.     cas -o data.hex math.o data.o kernel.o stdio.o
  5.  
  6. data.o:    8051fa.h kernel.h math.h stdio.h data.s
  7.     cas -c data.s
  8.  
  9. kernel.o:    8051fa.h kernel.h data.h kernel.s
  10.     cas -c kernel.s
  11.  
  12. math.o:    8051fa.h math.s
  13.     cas -c math.s
  14.  
  15. stdio.o:    8051fa.h kernel.h stdio.s
  16.     cas -c stdio.s
  17.